:root {
    --blue: #041735;
    --white: #ffffff; 
    --gray: #848b8f;
    --navlink: #f89e32;
    --textColor1: #000000;
    --textColor2: #33cc00;
    --textColor3: #F39B41;
    --highlight2Color: #f89e32;

    --logoFont: Bebas Neue;
    --navFont : Tahoma;
    /* --bigFont: Franklin Gothic Demi Cond; */
    --bigFont: Libre Franklin, sans-serif;
    
    --smllFont: [AvenirLTStd];
}

body{
    background-color: var(--white);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


header {
    position: sticky;
    top: 0;
    background-color: var(--blue);
    width: 100%;
    /* min-height: 144px; */
    /* text-align: center; */
    /* font-size: 12.5px; */
    
  }

  .topArea{
    display: flex;
    align-items: center;
  }

  .logoArea{
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items:flex-end;
    color: var(--gray);
    /* outline: 1px solid wheat; */
    padding: 20px;
  }

  .logoArea img{
    max-width: 200px;
    max-height: 98px;
  }

  .logoArea h6{
    font-family: var(--smllFont);
    font-size: 0.9vw;
    color: var(--white);
    position: relative;
    top: 8px;
  }

  .navbar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .navbar a{
    font-family: var(--navFont);
    color: var(--gray);
    font-size: 1.2vw;
  }

  .navbar a:hover{
    color: var(--textColor2);
  }

  #active{
    color: var(--textColor2);
  }



  .mainImg{
    margin-bottom: 20px;
  }

  .mainImg img{
    width: 100%;
    height: auto;
  } 

  .textArea{
    /* outline: 1px solid red; */
    height: 100%;
    padding: 20px  20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    align-items: center;
    
  }

  .textArea h2{
    /* font-size: 80px; */
    /* font-weight: 700; */
    font-family: var(--bigFont);
    font-size: 6vw;
    font-weight: 790;
    line-height: 58px;
  }

  .highlight{
    color: var(--textColor2);
  }

  .highlight2{
    color: var(--highlight2Color);
  }

  .textArea p{
    font-family: var(--smllFont);
    font-size: 2vw;
  }

  .textArea h4{
    font-family: var(--bigFont);
    font-size: 4vw;
    font-weight: 750;
  }


  .options{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
  }

  .opt{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 30px;
    padding: 20px  20px 20px 20px;
  }

  .opt div:nth-child(2) h5{
    font-family: var(--bigFont);
    font-weight: 800;
    /* font-size: 2vw; */
  }

  .opt div:nth-child(2) p{
    font-family: var(--bigFont);
    font-weight: 100;
    /* font-size: 1.9vw; */
    max-width: 400px;
    text-align:left;
  }



  footer {
    position: relative;
    bottom: 0;
    width: 100%;
    min-height: 50px;
    background-color: var(--blue);
    color: #fff;
    padding: 10px 0;
   
  }

  .footernav a{
    color: var(--gray);
  }


  .footernav a:hover{
    color: var(--textColor2);
  }

 



  @media screen and (max-width:768px) {
    
    
    .logoArea img {
      max-width: 100px;
      max-height: 58px;
    }

    .logoArea h6 {
      font-size: 1.9vw;
    }

    .navbar a{
      font-size: 1.4vw;
    }

    .textArea{
      row-gap: 12px;
      padding: 2px 2px 2px 10px;
    }

    .textArea h2 {
      font-size: 6.5vw;
      line-height: 36px;
    }

    .textArea p {
      font-size: 2vw;
    }

    .textArea h4 {
      font-size: 4.4vw;
    }

    .options{
      padding: 2px 10px 2px 0px;
    }

    .opt{
      padding-top: 10px;
      padding-bottom: 0;
    }

    .opt div:nth-child(1) img{
      width: 60px;
      height: auto;
    }
  }



  @media screen and (max-width:576px) {
    
    body{
     
    }

    .logoArea img {
      max-width: 100px;
      max-height: 58px;
    }

    .navbar a{
      font-size: 1.6vw;
    }

    .textArea {
      margin: 0px 0px 10px 0px;
    }

    .textArea h2 {
      font-size: 8vw;
      line-height: 31px;
    }

    .textArea p {
      font-size: 2.5vw;
    }

    .textArea h4 {
      font-size: 5.9vw;
    }

    .opt div:nth-child(1) img{
      width: 50px;
      height: auto;
    }

    .opt div:nth-child(2) h5 {
      font-size: 18px;
    }

    .opt div:nth-child(2) p {
      font-size: 14px;
    }


  }